home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000062_news@columbia.edu_Sun Jan 1 07:04:59 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18395
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 1 Jan 1995 15:25:00 -0500
  3. Received: by apakabar.cc.columbia.edu id AA13451
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 1 Jan 1995 15:24:59 -0500
  5. Path: news.columbia.edu!panix!news.mathworks.com!news2.near.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Kermit & the strange DOS machine
  9. Message-Id: <1995Jan1.130459.36285@cc.usu.edu>
  10. Date: 1 Jan 95 13:04:59 MDT
  11. References: <wpfulmorD1pIp4.Aon@netcom.com>
  12. Organization: Utah State University
  13. Lines: 65
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <wpfulmorD1pIp4.Aon@netcom.com>, wpfulmor@netcom.com (william p fulmor) writes:
  17. > I have a single board 8 mhz 8088 MSDOS computer which is an expansion 
  18. > board to a unix based computer.  COM1 is irrevocably tied to a 
  19. > non-standard on-board-modem.  COM2 is said to be a standard PC serial 
  20. > port, which *was* driven by an NS 8250.   COM2 is *now* driven by an NS 
  21. > 16550.   \|^)
  22. > After starting Kermit (3.13 patch 20) in the usual fashion, if I 'set port 2'
  23. > Kermit finds and acknowleges the existance of the 16550 in response to
  24. > either 'sho comm' or 'sho mod'.  If I start Kermit with 'set port 2' in
  25. > the command line, it does *not* acknowlege the existance of the 16550.  I 
  26. > don't know if Kermit finds the 16550 under that circumstance (I have 
  27. > commented out 'set port 1' in mscustom.ini).
  28. > If I 'dial nnnnnnn', Kermit initializes the modem (Dataport 14400) at
  29. > 57600, dials the number and connects at 14400.  With very little tuning, I
  30. > transferred a text file at 2600~2700cps apparently error free from the
  31. > remote Kermit 5A(189) putting out allegedly at 38400. 
  32. > So why am I using this bandwidth?
  33.  
  34.     I don't quite understand this last question. Your telco line is 
  35. limited to 14,400 bps plus whatever compression can do (in Kermit, in the
  36. modem). 2600 cps is about 26,000 bps equivalent and that implies a
  37. compression of 2:1 (rather better than average).
  38.  
  39. > 1. Kermit takes 13 minutes from pressing <return> following the dial 
  40. > command to actually dialing the number.  It frequently takes so long to 
  41. > return to the prompt after connection is made that the connection drops 
  42. > before I can get the remote's attention.  "output atdtnnnnnnn\13' is a 
  43. > crude work-around.
  44.  
  45.     That's a sure sign of hardware troubles (interrupts are lost, 
  46. horribly for example).
  47.  
  48. > 2. Escaping from connect to local is prompt, but connecting back to 
  49. > remote takes a *long* time.
  50.     Ditto.
  51.  
  52. > 3. In interactive operation as a vt100 and with 'set flo rts/cts' a 
  53. > very few characters are dropped, not enough to cause problems - but - The 
  54. > screen is written only a few lines at a time with long pauses in 
  55. > between.  I suspect the remote gets bored with the constant hardware halts & 
  56. > looses interest.  If I 'set flo none' the screen is uninteligible.  
  57.  
  58.     Flow control is the likely suspect and the other end thinks
  59. you have stopped the flow. Again, serious hardware problems can mess up
  60. serial port handshaking.
  61.  
  62. > I suspect that this behavior is caused by Kermit's finding the 
  63. > non-standard modem at COM1 and using BIOS thereafter.  Can anyone verify 
  64. > my suspicions?  Is there a way to fool Kermit or to cause it to find COM2 
  65. > only?  Do any other non-standard hardware features cause Kermit to slow 
  66. > down in this fashion?
  67.  
  68.     Kermit will tell your about BIOSn. Just use SHOW COM to see it.
  69. SET PORT COM2 tells Kermit to use that port, and be sure there are no
  70. port-sensing commands before it (SHOW COM is a sensing command) so that
  71. the default COM1 is not touched by them. Try placing SET PORT COM2 near
  72. the top of file mskermit.ini to ensure that's the default port when the
  73. scripts run.
  74.     "Non-standard hardware features" covers rather much territory and I
  75. hesitate to begin speculating what your computer really looks like at the
  76. hardware level.
  77.     Joe D.